home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat4 / des2tf.4 < prev    next >
Text File  |  1999-09-16  |  860b  |  67 lines

  1.  
  2.  
  3.  
  4. des2tf(1)                      Scilab Function                      des2tf(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   des2tf - descriptor to transfer function conversion
  13.  
  14. CALLING SEQUENCE
  15.   [S]=des2tf(sl)
  16.   [Bfs,Bis,chis]=des2tf(sl)
  17.  
  18. PARAMETERS
  19.  
  20.   sl          : list (linear system in descriptor form)
  21.  
  22.   Bfs, Bis    : two polynomial matrices
  23.  
  24.   chis        : polynomial
  25.  
  26.   S           : rational matrix
  27.  
  28. DESCRIPTION
  29.   Given the linear system in descriptor form i.e.  Sl=list('des',A,B,C,0,E),
  30.   des2tf converts sl into its transfer function representation:
  31.   S=C*(s*E-A)^(-1)*B
  32.   Called with 3 outputs arguments des2tf returns Bfs and Bis two polynomial
  33.   matrices, and chis polynomial such that:
  34.   S=Bfs/chis - Bis
  35.   chis is the determinant of (s*E-A) (up to a xcative constant);
  36.  
  37. SEE ALSO
  38.   glever, pol2des, tf2des, ss2tf, des2ss, rowshuff
  39.  
  40. AUTHOR
  41.   F. D.
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.